GET api/faqs/productos/empresas?idsOrigenes[0]={idsOrigenes[0]}&idsOrigenes[1]={idsOrigenes[1]}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idsOrigenes

Collection of integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EmpresaOrigenProductoModel
NameDescriptionTypeAdditional information
CodigoEmpresa

string

None.

NombreEmpresa

string

None.

IdOrigenProducto

integer

None.

OrigenProducto

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CodigoEmpresa": "sample string 1",
    "NombreEmpresa": "sample string 2",
    "IdOrigenProducto": 1,
    "OrigenProducto": "sample string 3"
  },
  {
    "CodigoEmpresa": "sample string 1",
    "NombreEmpresa": "sample string 2",
    "IdOrigenProducto": 1,
    "OrigenProducto": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEmpresaOrigenProductoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Core.Models.Faqs">
  <EmpresaOrigenProductoModel>
    <CodigoEmpresa>sample string 1</CodigoEmpresa>
    <IdOrigenProducto>1</IdOrigenProducto>
    <NombreEmpresa>sample string 2</NombreEmpresa>
    <OrigenProducto>sample string 3</OrigenProducto>
  </EmpresaOrigenProductoModel>
  <EmpresaOrigenProductoModel>
    <CodigoEmpresa>sample string 1</CodigoEmpresa>
    <IdOrigenProducto>1</IdOrigenProducto>
    <NombreEmpresa>sample string 2</NombreEmpresa>
    <OrigenProducto>sample string 3</OrigenProducto>
  </EmpresaOrigenProductoModel>
</ArrayOfEmpresaOrigenProductoModel>